5fb28d3277c50b6990f9b5390f49943dcb4fa1f3,portal-impl/src/com/liferay/portlet/PortletSessionImpl.java,PortletSessionImpl,removeAttribute,#String#,201
Before Change
throw new IllegalArgumentException();
}
if (_invalid) {
throw new IllegalStateException();
}
_session.removeAttribute(_getPortletScopeName(name));
}
public void removeAttribute(String name, int scope) {
After Change
throw new IllegalArgumentException();
}
String scopeName = _getPortletScopeName(name);
_httpSession.removeAttribute(scopeName);
}